home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / updates / update28.zoo / pml / diffs
Text File  |  1993-02-22  |  2KB  |  75 lines

  1. ===================================================================
  2. RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/Changelog,v
  3. retrieving revision 1.18
  4. diff -c -r1.18 Changelog
  5. *** 1.18    1992/12/28 08:11:47
  6. --- Changelog    1993/02/22 18:18:00
  7. ***************
  8. *** 298,300 ****
  9. --- 298,305 ----
  10.       major hacks. see the comments at the top.
  11.   
  12.   ---------------------------- Patchlevel 20 ------------------------------
  13. + atan2.c:: Howard Chu
  14. +     There is a simple typo in atan2.c which I encountered while trying to
  15. +     build some -m68020 -m68881 libraries for the Falcon...
  16. + ---------------------------- Patchlevel 21 ------------------------------
  17. ===================================================================
  18. RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/PatchLev.h,v
  19. retrieving revision 1.17
  20. diff -c -r1.17 PatchLev.h
  21. *** 1.17    1992/12/28 08:11:48
  22. --- PatchLev.h    1993/02/22 18:18:01
  23. ***************
  24. *** 1,4 ****
  25. ! #define    PatchLevel "20"
  26.   
  27.   /*
  28.    *
  29. --- 1,4 ----
  30. ! #define    PatchLevel "21"
  31.   
  32.   /*
  33.    *
  34. ===================================================================
  35. RCS file: /net/acae127/home/bammi/etc/src/master/atari/pml/pmlsrc/atan2.c,v
  36. retrieving revision 1.8
  37. diff -c -r1.8 atan2.c
  38. *** 1.8    1992/03/06 19:34:30
  39. --- atan2.c    1993/02/22 18:18:04
  40. ***************
  41. *** 143,149 ****
  42.       blt    1f        | x < 0!
  43.                   | x > 0: return atan(y/x)
  44.   
  45. !     fmoved    sp@(4)@,fp0    | get y
  46.       fdivd    sp@(12),fp0    | y/x    
  47.       fatanx    fp0,fp0        | atan(y/x)
  48.       bra 3f            | return
  49. --- 143,149 ----
  50.       blt    1f        | x < 0!
  51.                   | x > 0: return atan(y/x)
  52.   
  53. !     fmoved    sp@(4),fp0    | get y
  54.       fdivd    sp@(12),fp0    | y/x    
  55.       fatanx    fp0,fp0        | atan(y/x)
  56.       bra 3f            | return
  57. ***************
  58. *** 150,156 ****
  59.   1:                | x < 0
  60.   
  61.       fmovecr    #0,fp1        | get pi
  62. !     fmoved    sp@(4)@,fp0    | get y
  63.       fdivd    sp@(12),fp0    | y/x
  64.       fatanx    fp0,fp0        | atan(y/x)
  65.       btst    #31,sp@(4)    | sign(y)
  66. --- 150,156 ----
  67.   1:                | x < 0
  68.   
  69.       fmovecr    #0,fp1        | get pi
  70. !     fmoved    sp@(4),fp0    | get y
  71.       fdivd    sp@(12),fp0    | y/x
  72.       fatanx    fp0,fp0        | atan(y/x)
  73.       btst    #31,sp@(4)    | sign(y)
  74.